home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / grafix / raytracing / raylab / source / tga.h < prev    next >
Text File  |  1996-01-04  |  381b  |  15 lines

  1. /*
  2.     name:    tga.h
  3.  
  4.     Prototypes for tga support
  5.     --------------------------
  6.  
  7. */
  8.  
  9. /* Prototypes for functions defined in tga.c */
  10. void WriteTgaHeader(FILE *f,long width, long height);
  11. void ReadTgaHeader(FILE *f, long *width, long *height);
  12. void WriteTgaPixle(FILE *f, char r, char g, char b);
  13. void ReadTgaPixle(FILE *f, int *r, int *g, int *b);
  14. void WriteTgaLine(FILE *f, long width);
  15.